In this notebook, a template is provided for you to implement your functionality in stages, which is required to successfully complete this project. If additional code is required that cannot be included in the notebook, be sure that the Python code is successfully imported and included in your submission if necessary.
Note: Once you have completed all of the code implementations, you need to finalize your work by exporting the iPython Notebook as an HTML document. Before exporting the notebook to html, all of the code cells need to have been run so that reviewers can see the final implementation and output. You can then export the notebook by using the menu above and navigating to \n", "File -> Download as -> HTML (.html). Include the finished document along with this notebook as your submission.
In addition to implementing code, there is a writeup to complete. The writeup should be completed in a separate file, which can be either a markdown file or a pdf document. There is a write up template that can be used to guide the writing process. Completing the code template and writeup template will cover all of the rubric points for this project.
The rubric contains "Stand Out Suggestions" for enhancing the project beyond the minimum requirements. The stand out suggestions are optional. If you decide to pursue the "stand out suggestions", you can include the code in this Ipython notebook and also discuss the results in the writeup file.
Note: Code and Markdown cells can be executed using the Shift + Enter keyboard shortcut. In addition, Markdown cells can be edited by typically double-clicking the cell to enter edit mode.
# Load pickled data
import pickle
# Fill this in based on where you saved the training and testing data
training_file = './data/train.p'
validation_file= './data/valid.p'
testing_file = './data/test.p'
with open(training_file, mode='rb') as f:
train = pickle.load(f)
with open(validation_file, mode='rb') as f:
valid = pickle.load(f)
with open(testing_file, mode='rb') as f:
test = pickle.load(f)
X_train, y_train = train['features'], train['labels']
X_valid, y_valid = valid['features'], valid['labels']
X_test, y_test = test['features'], test['labels']
The pickled data is a dictionary with 4 key/value pairs:
'features' is a 4D array containing raw pixel data of the traffic sign images, (num examples, width, height, channels).'labels' is a 1D array containing the label/class id of the traffic sign. The file signnames.csv contains id -> name mappings for each id.'sizes' is a list containing tuples, (width, height) representing the original width and height the image.'coords' is a list containing tuples, (x1, y1, x2, y2) representing coordinates of a bounding box around the sign in the image. THESE COORDINATES ASSUME THE ORIGINAL IMAGE. THE PICKLED DATA CONTAINS RESIZED VERSIONS (32 by 32) OF THESE IMAGESComplete the basic data summary below. Use python, numpy and/or pandas methods to calculate the data summary rather than hard coding the results. For example, the pandas shape method might be useful for calculating some of the summary results.
import numpy as np
SEED = 1501
np.random.seed(SEED)
### Replace each question mark with the appropriate value.
### Use python, pandas or numpy methods rather than hard coding the results
# Number of training examples
n_train = X_train.shape[0]
# Number of validation examples
n_validation = X_valid.shape[0]
# Number of testing examples.
n_test = X_test.shape[0]
# What's the shape of an traffic sign image?
image_shape = X_train.shape[1:]
# How many unique classes/labels there are in the dataset.
n_classes = len(np.unique(y_train))
print("Number of training examples =", n_train)
print("Number of validation examples=", n_validation)
print("Number of testing examples =", n_test)
print("Image data shape =", image_shape)
print("Number of classes =", n_classes)
Visualize the German Traffic Signs Dataset using the pickled file(s). This is open ended, suggestions include: plotting traffic sign images, plotting the count of each sign, etc.
The Matplotlib examples and gallery pages are a great resource for doing visualizations in Python.
NOTE: It's recommended you start with something simple first. If you wish to do more, come back to it after you've completed the rest of the sections. It can be interesting to look at the distribution of classes in the training, validation and test set. Is the distribution the same? Are there more examples of some classes than others?
### Data exploration visualization code goes here.
### Feel free to use as many code cells as needed.
import matplotlib.pyplot as plt
# Visualizations will be shown in the notebook.
%matplotlib inline
# Define the show_images function - show images for testing
def show_images(images, cols = 10, cmap=None):
rows = (len(images)+1)//cols
fig, axs = plt.subplots(rows,cols, figsize=(18, rows * 2))
fig.subplots_adjust(hspace = .1, wspace=.001)
axs = axs.ravel()
for i, img in enumerate(images):
axs[i].axis('off')
if(len(img.shape) == 2):
cmap = 'gray'
axs[i].imshow(img.squeeze(), cmap)
else:
axs[i].imshow(img, cmap)
# Show the histogram of label frequency
def show_histogram(y, n_classes):
# histogram of label frequency
hist, bins = np.histogram(y, bins=n_classes)
center = (bins[:-1] + bins[1:]) / 2
plt.title("Distribution of dataset")
plt.xlabel("Class number")
plt.ylabel("No image")
plt.bar(center, hist)
plt.show()
show_histogram(y_train, n_classes)
show_histogram(y_valid, n_classes)
import random
from pandas.io.parsers import read_csv
random.seed(SEED)
signnames = read_csv("signnames.csv").values[:, 1]
col_width = max(len(name) for name in signnames)
# Function - Show 10 random sample images for each class
def show_sample_images(labels, images, cmap=None):
sign_classes, class_indices, class_counts = np.unique(labels, return_index = True, return_counts = True)
for c, c_index, c_count in zip(sign_classes, class_indices, class_counts):
print("Class %i: %-*s %s samples" % (c, col_width, signnames[c], str(c_count)))
fig = plt.figure(figsize = (18, 3))
fig.subplots_adjust(left = 0, right = 1, bottom = 0, top = 1, hspace = 0.05, wspace = 0.05)
random_indices = random.sample(range(c_index, c_index + c_count), 10)
for i in range(10):
axis = fig.add_subplot(1, 10, i + 1, xticks=[], yticks=[])
if cmap == 'gray':
axis.imshow(images[random_indices[i]].squeeze(), cmap='gray')
else:
axis.imshow(images[random_indices[i]])
plt.show()
print("--------------------------------------------------------------------------------------\n")
show_sample_images(y_train, X_train)
Design and implement a deep learning model that learns to recognize traffic signs. Train and test your model on the German Traffic Sign Dataset.
The LeNet-5 implementation shown in the classroom at the end of the CNN lesson is a solid starting point. You'll have to change the number of classes and possibly the preprocessing, but aside from that it's plug and play!
With the LeNet-5 solution from the lecture, you should expect a validation set accuracy of about 0.89. To meet specifications, the validation set accuracy will need to be at least 0.93. It is possible to get an even higher accuracy, but 0.93 is the minimum for a successful project submission.
There are various aspects to consider when thinking about this problem:
Here is an example of a published baseline model on this problem. It's not required to be familiar with the approach used in the paper but, it's good practice to try to read papers like these.
Minimally, the image data should be normalized so that the data has mean zero and equal variance. For image data, (pixel - 128)/ 128 is a quick way to approximately normalize the data and can be used in this project.
Other pre-processing steps are optional. You can try different techniques to see if it improves performance.
Use the code cell (or multiple code cells, if necessary) to implement the first step of your project.
### Preprocess the data here. It is required to normalize the data. Other preprocessing steps could include
### converting to grayscale, etc.
### Feel free to use as many code cells as needed.
# Normallize data step
# Comparte between standardlise and normalised
# Reference https://github.com/jessicayung/self-driving-car-nd/blob/master/p2-traffic-signs/Traffic_Sign_Classifier.ipynb
# https://stats.stackexchange.com/questions/211436/why-do-we-normalize-images-by-subtracting-the-datasets-image-mean-and-not-the-c
# Histogram equalizer
# Argumentation would help better
# https://medium.com/@gruby/convolutional-neural-network-for-traffic-sign-classification-carnd-e46e95453899
# Flipping
# Noise, Projection and Rotation
# https://github.com/NikolasEnt/Traffic-Sign-Classifier/blob/master/Traffic_Sign_Classifier-2Net.ipynb
# Convert images to grayscale
def grayscale_images(images):
return np.sum(images/3, axis=3, keepdims=True)
# Convert to grayscale images
X_train_gray = grayscale_images(X_train)
X_valid_gray = grayscale_images(X_valid)
show_sample_images(y_train, X_train_gray, cmap='gray')
# Normalized images
def normalized_images(images):
return (images - 128)/128
# Normalized images
X_train_normalized = normalized_images(X_train_gray)
X_valid_normalized = normalized_images(X_valid_gray)
show_sample_images(y_train, X_train_normalized, cmap='gray')
show_sample_images(y_valid, X_valid_normalized, cmap='gray')
Translate image
import cv2
# Translate a random up to about 3 pixels in x, y directions
def translate_image(img, px = 3):
rows,cols,_ = img.shape
dx,dy = np.random.randint(-px,px,2)
M = np.float32([[1,0,dx],[0,1,dy]])
dst = cv2.warpAffine(img,M,(cols,rows))
dst = dst[:,:,np.newaxis]
return dst
# Utility function use to show 2 images original and converted - use for debugging
def show2images(original, converted, original_title = 'Original', converted_title = 'Converted'):
fig, axs = plt.subplots(1,2, figsize=(10, 3))
axs[0].axis('off')
axs[0].imshow(test_img.squeeze(), cmap='gray')
axs[0].set_title(original_title)
axs[1].axis('off')
axs[1].imshow(test_dst.squeeze(), cmap='gray')
axs[1].set_title(converted_title)
# Define the show_images function - show images for testing
def show_images(images, cols = 10, cmap='gray'):
rows = (len(images)+1)//cols
fig, axs = plt.subplots(rows,cols, figsize=(18, rows * 2))
fig.subplots_adjust(hspace = .1, wspace=.001)
axs = axs.ravel()
for i, img in enumerate(images):
axs[i].axis('off')
if cmap == 'gray':
axs[i].imshow(img.squeeze(), cmap)
else:
axs[i].imshow(img, cmap)
test_img = X_train_normalized[1523]
test_dsts = []
test_dsts.append(test_img)
for i in range(9):
test_dsts.append(translate_image(test_img))
show_images(test_dsts, cols = 10, cmap='gray')
Scale image
# Scale image randomly from -2 to 2
def scale_image(img, lower_limit=-2, upper_limit=2):
rows,cols,_ = img.shape
# transform limits
px = np.random.randint(lower_limit,upper_limit)
# ending locations
pts1 = np.float32([[px,px],[rows-px,px],[px,cols-px],[rows-px,cols-px]])
# starting locations (4 corners)
pts2 = np.float32([[0,0],[rows,0],[0,cols],[rows,cols]])
M = cv2.getPerspectiveTransform(pts1,pts2)
dst = cv2.warpPerspective(img,M,(rows,cols))
dst = dst[:,:,np.newaxis]
return dst
test_scale = []
test_scale.append(test_img)
for i in range(9):
test_scale.append(scale_image(test_img, -3, 3))
show_images(test_scale)
Warp image
def warp_image(img):
rows,cols,_ = img.shape
# random scaling coefficients
rndx = np.random.rand(3) - 0.5
rndx *= cols * 0.09 # this coefficient determines the degree of warping
rndy = np.random.rand(3) - 0.5
rndy *= rows * 0.09
# 3 starting points for transform, 1/4 way from edges
x1 = cols/4
x2 = 3*cols/4
y1 = rows/4
y2 = 3*rows/4
pts1 = np.float32([[y1,x1],
[y2,x1],
[y1,x2]])
pts2 = np.float32([[y1+rndy[0],x1+rndx[0]],
[y2+rndy[1],x1+rndx[1]],
[y1+rndy[2],x2+rndx[2]]])
M = cv2.getAffineTransform(pts1,pts2)
dst = cv2.warpAffine(img,M,(cols,rows))
dst = dst[:,:,np.newaxis]
return dst
test_warp = []
test_warp.append(test_img)
for i in range(9):
test_warp.append(warp_image(test_img))
show_images(test_warp)
Brightness image
def brightness_image(img, limit = 1.0):
shifted = img + limit
img_max_value = max(shifted.flatten())
max_coef = 2.0/img_max_value
min_coef = max_coef - 0.1
coef = np.random.uniform(min_coef, max_coef)
dst = shifted * coef - limit
return dst
test_brightness = []
test_brightness.append(test_img)
for i in range(9):
test_brightness.append(brightness_image(test_img))
show_images(test_brightness)
Putting it together - augment image
def augment_image(img):
return translate_image(scale_image(warp_image(brightness_image(img))))
test_augs = []
test_augs.append(test_img)
for i in range(9):
test_augs.append(augment_image(test_img))
show_images(test_augs)
# Test augment one image for each class
sign_classes, class_indices, class_counts = np.unique(y_train, return_index = True, return_counts = True)
for c, c_index, c_count in zip(sign_classes, class_indices, class_counts):
print("Class %i: %-*s" % (c, col_width, signnames[c]))
fig = plt.figure(figsize = (18, 3))
fig.subplots_adjust(left = 0, right = 1, bottom = 0, top = 1, hspace = 0.05, wspace = 0.05)
random_index = random.sample(range(c_index, c_index + c_count), 1)
random_image = X_train_normalized[random_index[0]]
for i in range(10):
axis = fig.add_subplot(1, 10, i + 1, xticks=[], yticks=[])
axis.imshow(augment_image(random_image).squeeze(), cmap='gray')
plt.show()
print("--------------------------------------------------------------------------------------\n")
from sklearn.model_selection import train_test_split
def combine_data(train_images, train_labels, valid_images, valid_labels):
# Combine the training and validation images in order to augment in total
X_total = np.concatenate((train_images, valid_images), axis=0)
y_total = np.concatenate((train_labels, valid_labels), axis=0)
show_sample_images(y_total, X_total, cmap='gray')
return X_total, y_total
def augment_train_images(images, labels):
sign_classes, class_indices, class_counts = np.unique(labels, return_index = True, return_counts = True)
images_aug = []
labels_aug = []
n_augs = []
for c, c_index, c_count in zip(sign_classes, class_indices, class_counts):
print("Processing Class %i: %-*s %s samples" % (c, col_width, signnames[c], str(c_count)))
if c_count < 1000:
n_aug = 15
elif c_count < 1500:
n_aug = 5
else:
n_aug = 3
n_augs.append(n_aug)
for i in range(c_index, c_index + c_count):
img = images[i]
y = labels[i]
images_aug.append(img)
labels_aug.append(y)
for j in range(n_aug):
new_img = augment_image(img)
images_aug.append(new_img)
labels_aug.append(y)
if i%10 == 0:
print('-', end='')
if i%50 == 0:
print('|', end='')
print()
print("After augumentation size:", (c_count + 1)*n_aug)
print("--------------------------------------------------------------------------------------\n")
return images_aug, labels_aug, n_augs
def augment_mass_train_images(images, labels, n_aug=15):
sign_classes, class_indices, class_counts = np.unique(labels, return_index = True, return_counts = True)
images_aug = []
labels_aug = []
n_aug = 15
n_augs = []
for c, c_index, c_count in zip(sign_classes, class_indices, class_counts):
print("Processing Class %i: %-*s %s samples" % (c, col_width, signnames[c], str(c_count)))
n_augs.append(n_aug)
for i in range(c_index, c_index + c_count):
img = images[i]
y = labels[i]
images_aug.append(img)
labels_aug.append(y)
for j in range(n_aug):
new_img = augment_image(img)
images_aug.append(new_img)
labels_aug.append(y)
if i%10 == 0:
print('-', end='')
if i%50 == 0:
print('|', end='')
print()
print("After augumentation size:", (c_count + 1)*n_aug)
print("--------------------------------------------------------------------------------------\n")
return images_aug, labels_aug, n_augs
def augment_valid_images(images, labels, n_augs):
sign_classes, class_indices, class_counts = np.unique(labels, return_index = True, return_counts = True)
images_aug = []
labels_aug = []
n_aug = 10
for c, c_index, c_count in zip(sign_classes, class_indices, class_counts):
print("Processing Class %i: %-*s %s samples" % (c, col_width, signnames[c], str(c_count)))
n_aug = n_augs[c]
for i in range(c_index, c_index + c_count):
img = images[i]
y = labels[i]
images_aug.append(img)
labels_aug.append(y)
for j in range(n_aug):
new_img = augment_image(img)
images_aug.append(new_img)
labels_aug.append(y)
if i%10 == 0:
print('-', end='')
if i%50 == 0:
print('|', end='')
print()
print("After augumentation size:", (c_count + 1)*n_aug)
print("--------------------------------------------------------------------------------------\n")
return images_aug, labels_aug
def augment_images(train_images, train_labels, valid_images, valid_labels):
X_train_aug, y_train_aug, n_augs = augment_train_images(train_images, train_labels)
X_valid_aug, y_valid_aug = augment_valid_images(valid_images, valid_labels, n_augs)
return X_train_aug, X_valid_aug, y_train_aug, y_valid_aug
#X_train_final, X_valid_final, y_train_final, y_valid_final = augment_images(X_train_normalized, y_train, X_valid_normalized, y_valid)
#X_train_final, y_train_final, n_augs = augment_train_images(X_train_normalized, y_train)
#X_train_final, y_train_final, n_augs = augment_mass_train_images(X_train_normalized, y_train, n_aug=20)
X_train_final, y_train_final, n_augs = augment_mass_train_images(X_train_normalized, y_train, n_aug=15)
augment_mass_train_images
X_valid_final = X_valid_normalized
y_valid_final = y_valid
show_histogram(y_train_final, n_classes)
show_histogram(y_valid_final, n_classes)
show_sample_images(y_train_final, X_train_final, cmap='gray')
show_sample_images(y_valid_final, X_valid_final, cmap='gray')
### Define your architecture here.
### Feel free to use as many code cells as needed.
import tensorflow as tf
from tensorflow.contrib.layers import flatten
keep_prob = tf.placeholder(tf.float32)
#keep_prob_conv1 = tf.placeholder(tf.float32)
#keep_prob_conv2 = tf.placeholder(tf.float32)
# Multi-Scale Convolutional Neural Networks - Pierre Sermanet and Yann LeCun
# http://yann.lecun.com/exdb/publis/pdf/sermanet-ijcnn-11.pdf
def LeNet_Pierre_Yann(x, mu=0, sigma=0.1):
# Layer 1: Convolutional. Input = 32x32x1. Output = 28x28x6.
# Need a filter height, width = 5 - strides 2 - VALID PADDING
# VALID Padding, the output height and width are computed as:
#out_height = ceil(float(in_height - filter_height + 1) / float(strides[1]))
# (32-5 + 1)/1
conv1_weights = tf.Variable(tf.truncated_normal(shape=(5,5,1,6), mean = mu, stddev = sigma))
conv1_bias = tf.Variable(tf.zeros(6))
conv1_strides = [1, 1, 1, 1]
conv1_padding = 'VALID'
conv1_layer = tf.nn.bias_add(tf.nn.conv2d(x, conv1_weights, conv1_strides, conv1_padding), conv1_bias)
# Activation.
# Choose relu
conv1_layer = tf.nn.relu(conv1_layer)
# Pooling. Input = 28x28x6. Output = 14x14x6.
# SAME Padding
# out_height = ceil(float(in_height) / float(strides[1]))
conv1_pksize = [1,2,2, 1]
conv1_pstrides = [1,2,2, 1]
conv1_kpadding = 'VALID'
conv1_layer = tf.nn.max_pool(conv1_layer, conv1_pksize, conv1_pstrides, conv1_kpadding)
# Dropout
#conv1_layer = tf.nn.dropout(conv1_layer, keep_prob_conv1)
# Layer 2: Convolutional. Output = 10x10x16.
# Input from layer 1: 14x14x6
# (14-5+1)/1 - filter width - height = 5, strides 1
conv2_weights = tf.Variable(tf.truncated_normal(shape=(5,5,6,16), mean = mu, stddev = sigma))
conv2_bias = tf.Variable(tf.zeros(16))
conv2_strides = [1, 1, 1, 1]
conv2_padding = 'VALID'
conv2_layer = tf.nn.bias_add(tf.nn.conv2d(conv1_layer, conv2_weights, conv2_strides, conv2_padding), conv2_bias)
# Activation.
# Choose RELU
conv2_layer = tf.nn.relu(conv2_layer)
# Pooling. Input = 10x10x16. Output = 5x5x16.
# SAME PADDING with strides = 2
conv2_pksize = [1, 2, 2, 1]
conv2_pstrides = [1, 2, 2, 1]
conv2_ppadding = 'VALID'
conv2_layer = tf.nn.max_pool(conv2_layer, conv2_pksize, conv2_pstrides, conv2_ppadding)
# Dropout
#conv2_layer = tf.nn.dropout(conv2_layer, keep_prob_conv2)
# Layer 3: Convolutional. Input: 5x5x16
# Filter 3,3, 50
# Output (5 - 3 + 1)/1 = 3 => 3x3x50
conv3_weights = tf.Variable(tf.truncated_normal(shape=(3,3,16,50), mean = mu, stddev = sigma))
conv3_bias = tf.Variable(tf.zeros(50))
conv3_strides = [1,1,1,1]
conv3_padding = 'VALID'
conv3_layer = tf.nn.bias_add(tf.nn.conv2d(conv2_layer, conv3_weights, conv3_strides, conv3_padding), conv3_bias)
# RELU activation
conv3_layer = tf.nn.relu(conv3_layer)
# Flatten layer 1 - Input = 14x14x6. Output = 1176.
#fc_layer1_flat = flatten(conv1_layer)
# Flatten layer 2 - Input = 5x5x16. Output = 400.
fc_layer2_flat = flatten(conv2_layer)
# Flatten layer 3 - Input = 3x3x50. Output = 450
fc_layer3_flat = flatten(conv3_layer)
# Concat layer 2 flat and layer 3 flat. Input = 400 + 450. Output = 850
fc = tf.concat([fc_layer2_flat, fc_layer3_flat], 1)
# Dropout
fc_dropout = tf.nn.dropout(fc, keep_prob)
# TODO: Layer 4: Fully Connected. Input = 850. Output = 43.
fc1_w = tf.Variable(tf.truncated_normal(shape=(850, 43), mean = mu, stddev = sigma))
fc1_b = tf.Variable(tf.zeros(43))
logits = tf.add(tf.matmul(fc_dropout, fc1_w), fc1_b)
return logits
from tensorflow.contrib.layers import flatten
keep_prob = tf.placeholder(tf.float32)
def LeNet(x, mu=0, sigma=0.1):
# Layer 1: Convolutional. Input = 32x32x1. Output = 28x28x6.
# Need a filter height, width = 5 - strides 2 - VALID PADDING
# VALID Padding, the output height and width are computed as:
#out_height = ceil(float(in_height - filter_height + 1) / float(strides[1]))
# (32-5 + 1)/1
conv1_weights = tf.Variable(tf.truncated_normal(shape=(5,5,1,6), mean = mu, stddev = sigma))
conv1_bias = tf.Variable(tf.zeros(6))
conv1_strides = [1, 1, 1, 1]
conv1_padding = 'VALID'
conv1_layer = tf.nn.bias_add(tf.nn.conv2d(x, conv1_weights, conv1_strides, conv1_padding), conv1_bias)
# Activation.
# Choose relu
conv1_layer = tf.nn.relu(conv1_layer)
# Pooling. Input = 28x28x6. Output = 14x14x6.
# SAME Padding
# out_height = ceil(float(in_height) / float(strides[1]))
conv1_pksize = [1,2,2, 1]
conv1_pstrides = [1,2,2, 1]
conv1_kpadding = 'SAME'
conv1_layer = tf.nn.max_pool(conv1_layer, conv1_pksize, conv1_pstrides, conv1_kpadding)
# Layer 2: Convolutional. Output = 10x10x16.
# Input from layer 1: 14x14x6
# (14-5+1)/1 - filter width - height = 5, strides 1
conv2_weights = tf.Variable(tf.truncated_normal(shape=(5,5,6,16), mean = mu, stddev = sigma))
conv2_bias = tf.Variable(tf.zeros(16))
conv2_strides = [1, 1, 1, 1]
conv2_padding = 'VALID'
conv2_layer = tf.nn.bias_add(tf.nn.conv2d(conv1_layer, conv2_weights, conv2_strides, conv2_padding), conv2_bias)
# Activation.
# Choose RELU
conv2_layer = tf.nn.relu(conv2_layer)
# Pooling. Input = 10x10x16. Output = 5x5x16.
# SAME PADDING with strides = 2
conv2_pksize = [1, 2, 2, 1]
conv2_pstrides = [1, 2, 2, 1]
conv2_ppadding = 'SAME'
conv2_layer = tf.nn.max_pool(conv2_layer, conv2_pksize, conv2_pstrides, conv2_ppadding)
# Flatten. Input = 5x5x16. Output = 400.
fc = flatten(conv2_layer)
# Layer 3: Fully Connected. Input = 400. Output = 120.
fc1_weights = tf.Variable(tf.truncated_normal(shape=(400,120), mean=mu, stddev = sigma))
fc1_bias = tf.Variable(tf.zeros(120))
fc1_layer = tf.matmul(fc, fc1_weights) + fc1_bias
# Activation.
fc1_layer = tf.nn.relu(fc1_layer)
# Dropout
fc1_layer = tf.nn.dropout(fc1_layer, keep_prob)
# Layer 4: Fully Connected. Input = 120. Output = 84.
fc2_w = tf.Variable(tf.truncated_normal(shape=(120,84), mean=mu, stddev = sigma))
fc2_b = tf.Variable(tf.zeros(84))
fc2_layer = tf.matmul(fc1_layer, fc2_w) + fc2_b
# Activation.
fc2_layer = tf.nn.relu(fc2_layer)
fc2_layer = tf.nn.dropout(fc2_layer, keep_prob)
# Layer 5: Fully Connected. Input = 84. Output = 43.
fc3_w = tf.Variable(tf.truncated_normal(shape=(84,43), mean=mu, stddev = sigma))
fc3_b = tf.Variable(tf.zeros(43))
logits = tf.matmul(fc2_layer, fc3_w) + fc3_b
return logits
A validation set can be used to assess how well the model is performing. A low accuracy on the training and validation sets imply underfitting. A high accuracy on the training set but low accuracy on the validation set implies overfitting.
### Train your model here.
### Calculate and report the accuracy on the training and validation set.
### Once a final model architecture is selected,
### the accuracy on the test set should be calculated and reported as well.
### Feel free to use as many code cells as needed.
x = tf.placeholder(tf.float32, (None, 32, 32, 1))
y = tf.placeholder(tf.int32, (None))
one_hot_y = tf.one_hot(y, 43)
EPOCHS = 60
BATCH_SIZE = 256
learning_rate = 0.001
#learning_rate = 0.0001
#learning_rate = 0.0009
#logits = LeNet(x)
logits = LeNet_Pierre_Yann(x)
cross_entropy = tf.nn.softmax_cross_entropy_with_logits(labels=one_hot_y, logits=logits)
loss_operation = tf.reduce_mean(cross_entropy)
optimizer = tf.train.AdamOptimizer(learning_rate = learning_rate)
training_operation = optimizer.minimize(loss_operation)
correct_prediction = tf.equal(tf.argmax(logits, 1), tf.argmax(one_hot_y, 1))
accuracy_operation = tf.reduce_mean(tf.cast(correct_prediction, tf.float32))
saver = tf.train.Saver()
def evaluate(X_data, y_data):
num_examples = len(X_data)
total_accuracy = 0
sess = tf.get_default_session()
for offset in range(0, num_examples, BATCH_SIZE):
batch_x, batch_y = X_data[offset:offset+BATCH_SIZE], y_data[offset:offset+BATCH_SIZE]
accuracy = sess.run(accuracy_operation, feed_dict={x: batch_x, y: batch_y, keep_prob: 1.0 })
total_accuracy += (accuracy * len(batch_x))
return total_accuracy / num_examples
from timeit import default_timer as timer
# Shuffle data
from sklearn.utils import shuffle
X_train_final, y_train_final = shuffle(X_train_final, y_train_final)
validation_accuracies = []
start_time = timer()
with tf.Session() as sess:
sess.run(tf.global_variables_initializer())
num_examples = len(X_train_final)
print("Training numer of images:", num_examples)
print("Validation number of images:", len(X_valid_final) )
print("Augment data strategy: Maximum augment training data (15)")
print("learning rate = ", learning_rate)
print("EPOCHS = ", EPOCHS)
print("BATCH_SIZE = ", BATCH_SIZE)
print("Drop out = 0.5")
print()
for i in range(EPOCHS):
start_epoch_time = timer()
X_train_final, y_train_final = shuffle(X_train_final, y_train_final)
for offset in range(0, num_examples, BATCH_SIZE):
end = offset + BATCH_SIZE
batch_x, batch_y = X_train_final[offset:end], y_train_final[offset:end]
sess.run(training_operation, feed_dict={x: batch_x, y: batch_y, keep_prob: 0.5})
if (offset % 200 == 0):
print('-', end='' )
if (offset % 900 == 0):
print('|', end='' )
end_epoch_time = timer()
duration_epoch = (end_epoch_time - start_epoch_time)/60
training_accuracy = evaluate(X_train_final, y_train_final)
print()
print("EPOCH {} ...".format(i+1))
print("Training time: %4.2f mins" %duration_epoch)
validation_accuracy = evaluate(X_valid_final, y_valid_final)
validation_accuracies.append(validation_accuracy)
end_valid_epoch_time = timer()
duration_valid_epoch = (end_valid_epoch_time - start_epoch_time) / 60
print("Included validation time: %4.2f mins" %duration_valid_epoch)
print("Tranning Accuracy = {:.3f}".format(training_accuracy))
print("Validation Accuracy = {:.3f}".format(validation_accuracy))
print()
end_time = timer()
duration = (end_time - start_time)/60
print("Duration time: %4.2f mins" %duration)
#saver.save(sess, './lenet')
saver.save(sess, './lenet-1')
print("Model saved")
X_test_gray = grayscale_images(X_test)
X_test_normalized = normalized_images(X_test_gray)
# Evaluate the test dataset
with tf.Session() as sess:
sess.run(tf.global_variables_initializer())
saver2 = tf.train.import_meta_graph('./lenet-1.meta')
saver2.restore(sess, "./lenet-1")
test_accuracy = evaluate(X_test_normalized, y_test)
print("Test Set Accuracy = {:.3f}".format(test_accuracy))
To give yourself more insight into how your model is working, download at least five pictures of German traffic signs from the web and use your model to predict the traffic sign type.
You may find signnames.csv useful as it contains mappings from the class id (integer) to the actual sign name.
### Load the images and plot them here.
### Feel free to use as many code cells as needed.
### Run the predictions here and use the model to output the prediction for each image.
### Make sure to pre-process the images with the same pre-processing pipeline used earlier.
### Feel free to use as many code cells as needed.
### Calculate the accuracy for these 5 new images.
### For example, if the model predicted 1 out of 5 signs correctly, it's 20% accurate on these new images.
For each of the new images, print out the model's softmax probabilities to show the certainty of the model's predictions (limit the output to the top 5 probabilities for each image). tf.nn.top_k could prove helpful here.
The example below demonstrates how tf.nn.top_k can be used to find the top k predictions for each image.
tf.nn.top_k will return the values and indices (class ids) of the top k predictions. So if k=3, for each sign, it'll return the 3 largest probabilities (out of a possible 43) and the correspoding class ids.
Take this numpy array as an example. The values in the array represent predictions. The array contains softmax probabilities for five candidate images with six possible classes. tk.nn.top_k is used to choose the three classes with the highest probability:
# (5, 6) array
a = np.array([[ 0.24879643, 0.07032244, 0.12641572, 0.34763842, 0.07893497,
0.12789202],
[ 0.28086119, 0.27569815, 0.08594638, 0.0178669 , 0.18063401,
0.15899337],
[ 0.26076848, 0.23664738, 0.08020603, 0.07001922, 0.1134371 ,
0.23892179],
[ 0.11943333, 0.29198961, 0.02605103, 0.26234032, 0.1351348 ,
0.16505091],
[ 0.09561176, 0.34396535, 0.0643941 , 0.16240774, 0.24206137,
0.09155967]])
Running it through sess.run(tf.nn.top_k(tf.constant(a), k=3)) produces:
TopKV2(values=array([[ 0.34763842, 0.24879643, 0.12789202],
[ 0.28086119, 0.27569815, 0.18063401],
[ 0.26076848, 0.23892179, 0.23664738],
[ 0.29198961, 0.26234032, 0.16505091],
[ 0.34396535, 0.24206137, 0.16240774]]), indices=array([[3, 0, 5],
[0, 1, 4],
[0, 5, 1],
[1, 3, 5],
[1, 4, 3]], dtype=int32))
Looking just at the first row we get [ 0.34763842, 0.24879643, 0.12789202], you can confirm these are the 3 largest probabilities in a. You'll also notice [3, 0, 5] are the corresponding indices.
### Print out the top five softmax probabilities for the predictions on the German traffic sign images found on the web.
### Feel free to use as many code cells as needed.
Note: Once you have completed all of the code implementations and successfully answered each question above, you may finalize your work by exporting the iPython Notebook as an HTML document. You can do this by using the menu above and navigating to \n", "File -> Download as -> HTML (.html). Include the finished document along with this notebook as your submission.
This Section is not required to complete but acts as an additional excersise for understaning the output of a neural network's weights. While neural networks can be a great learning device they are often referred to as a black box. We can understand what the weights of a neural network look like better by plotting their feature maps. After successfully training your neural network you can see what it's feature maps look like by plotting the output of the network's weight layers in response to a test stimuli image. From these plotted feature maps, it's possible to see what characteristics of an image the network finds interesting. For a sign, maybe the inner network feature maps react with high activation to the sign's boundary outline or to the contrast in the sign's painted symbol.
Provided for you below is the function code that allows you to get the visualization output of any tensorflow weight layer you want. The inputs to the function should be a stimuli image, one used during training or a new one you provided, and then the tensorflow variable name that represents the layer's state during the training process, for instance if you wanted to see what the LeNet lab's feature maps looked like for it's second convolutional layer you could enter conv2 as the tf_activation variable.
For an example of what feature map outputs look like, check out NVIDIA's results in their paper End-to-End Deep Learning for Self-Driving Cars in the section Visualization of internal CNN State. NVIDIA was able to show that their network's inner weights had high activations to road boundary lines by comparing feature maps from an image with a clear path to one without. Try experimenting with a similar test to show that your trained network's weights are looking for interesting features, whether it's looking at differences in feature maps from images with or without a sign, or even what feature maps look like in a trained network vs a completely untrained one on the same sign image.
Your output should look something like this (above)
### Visualize your network's feature maps here.
### Feel free to use as many code cells as needed.
# image_input: the test image being fed into the network to produce the feature maps
# tf_activation: should be a tf variable name used during your training procedure that represents the calculated state of a specific weight layer
# activation_min/max: can be used to view the activation contrast in more detail, by default matplot sets min and max to the actual min and max values of the output
# plt_num: used to plot out multiple different weight feature map sets on the same block, just extend the plt number for each new feature map entry
def outputFeatureMap(image_input, tf_activation, activation_min=-1, activation_max=-1 ,plt_num=1):
# Here make sure to preprocess your image_input in a way your network expects
# with size, normalization, ect if needed
# image_input =
# Note: x should be the same name as your network's tensorflow data placeholder variable
# If you get an error tf_activation is not defined it may be having trouble accessing the variable from inside a function
activation = tf_activation.eval(session=sess,feed_dict={x : image_input})
featuremaps = activation.shape[3]
plt.figure(plt_num, figsize=(15,15))
for featuremap in range(featuremaps):
plt.subplot(6,8, featuremap+1) # sets the number of feature maps to show on each row and column
plt.title('FeatureMap ' + str(featuremap)) # displays the feature map number
if activation_min != -1 & activation_max != -1:
plt.imshow(activation[0,:,:, featuremap], interpolation="nearest", vmin =activation_min, vmax=activation_max, cmap="gray")
elif activation_max != -1:
plt.imshow(activation[0,:,:, featuremap], interpolation="nearest", vmax=activation_max, cmap="gray")
elif activation_min !=-1:
plt.imshow(activation[0,:,:, featuremap], interpolation="nearest", vmin=activation_min, cmap="gray")
else:
plt.imshow(activation[0,:,:, featuremap], interpolation="nearest", cmap="gray")